projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cf4932
)
(Fdelete_frame): Don't initialize a Lisp_Object.
author
Richard M. Stallman
<rms@gnu.org>
Wed, 2 Mar 1994 22:05:40 +0000
(22:05 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 2 Mar 1994 22:05:40 +0000
(22:05 +0000)
Clean up line breaks.
src/frame.c
patch
|
blob
|
history
diff --git
a/src/frame.c
b/src/frame.c
index b8d335a50954d8e41093fbf693883c4500c5459b..f90d5384b0e9f20b97d2b5fe5d25634a83424974 100644
(file)
--- a/
src/frame.c
+++ b/
src/frame.c
@@
-701,14
+701,13
@@
but if the second optional argument FORCE is non-nil, you may do so.")
CONSP (frames);
frames = XCONS (frames)->cdr)
{
- Lisp_Object this = XCONS (frames)->car;
+ Lisp_Object this;
+ this = XCONS (frames)->car;
if (! EQ (this, frame)
&& EQ (frame,
- (WINDOW_FRAME
- (XWINDOW
- (FRAME_MINIBUF_WINDOW
- (XFRAME (this)))))))
+ WINDOW_FRAME (XWINDOW
+ (FRAME_MINIBUF_WINDOW (XFRAME (this))))))
error ("Attempt to delete a surrogate minibuffer frame");
}
}